:art: Makemigrations

huangqimin001 2 lat temu
rodzic
commit
3d1ebeb471
1 zmienionych plików z 18 dodań i 0 usunięć
  1. 18 0
      thermometer/migrations/0002_thermometerinfo_bound_at.py

+ 18 - 0
thermometer/migrations/0002_thermometerinfo_bound_at.py

@@ -0,0 +1,18 @@
1
+# Generated by Django 3.2.14 on 2022-07-06 04:36
2
+
3
+from django.db import migrations, models
4
+
5
+
6
+class Migration(migrations.Migration):
7
+
8
+    dependencies = [
9
+        ('thermometer', '0001_initial'),
10
+    ]
11
+
12
+    operations = [
13
+        migrations.AddField(
14
+            model_name='thermometerinfo',
15
+            name='bound_at',
16
+            field=models.DateTimeField(blank=True, help_text='绑定时间', null=True, verbose_name='bound_at'),
17
+        ),
18
+    ]